.landing .header .arrow {
    color: var(--main_light);
}

.header {
    background-color: rgb(0, 0, 0);
    min-height: 400px;
}

.landing .header .main_img {
    object-fit: cover;
}

.landing .header .arrow i {
    transform: rotate(-180deg);
}

.landing .header .arrow:hover {
    color: #afafaf !important;
}

.landing .dropdown-item.active,
.landing .dropdown-item:active {
    color: var(--main_light);
    text-decoration: none;
    background-color: unset;
    border-bottom: 2px solid var(--main);
}

.landing .dropdown-item {
    position: relative;
}

.landing .dropdown-item:focus,
.landing .dropdown-item:hover {
    color: #afafaf !important;
    background-color: unset;
}

.landing .dropdown-item::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    color: var(--main);
    background-color: var(--main);
    transition: 0.5s;
}

.landing .dropdown-item:focus::before,
.landing .dropdown-item:hover::before {
    width: 100%;
}

.landing .breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: unset;
    color: #6c757d;
    content: var(--bs-breadcrumb-divider, "/");
}

.landing .breadcrumb-item+.breadcrumb-item {
    padding-right: unset;
    padding-left: unset;
    display: flex;
}

.navigation .breadcrumb {
    display: flex;
    flex-wrap: nowrap;
    padding: 0 0;
    margin-bottom: 1rem;
    list-style: none;
    /* flex-direction: row-reverse; */
    /* direction: rtl; */
    --bs-breadcrumb-divider: "/";
}

.navigation .breadcrumb a {
    color: #908c8c;
}

.navigation .breadcrumb a:hover {
    color: #404041;
}

.navigation .breadcrumb-item.active {
    color: #404041;
}

/* ::selection {
  color: #fff;
  background: #17a2b8;
} */
.wrapper {
    background: transparent;
    border: 1px var(--primary) solid;
}

header p {
    font-size: 15px;
    font-weight: bold;
    padding: 0.5rem;
}

.price-input {
    /* width: 100%; */
    display: flex;
    /* margin: 30px 0 35px; */
}

.price-input .field {
    display: flex;
    /* width: 100%; */
    /* height: 45px; */
    align-items: center;
}

.field input {
    /* width: 100%; */
    /* height: 100%;
  outline: none;
  font-size: 19px;
  margin-left: 12px;
  border-radius: 5px;
  text-align: center;
   */
    border: none;
    background: transparent;
    -moz-appearance: textfield;
    width: 60px;
}

.field input:focus-visible {
    box-shadow: none !important;
    border: none !important;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.price-input .separator {
    width: 20px;
    display: flex;
    font-size: 19px;
    align-items: center;
    justify-content: center;
}

.slider {
    height: 5px;
    position: relative;
    background: #ddd;
    border-radius: 5px;
}

.slider .progress {
    height: 100%;
    left: 25%;
    right: 25%;
    position: absolute;
    border-radius: 5px;
    background: var(--main);
}

.range-input {
    position: relative;
}

.range-input input {
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    height: 20px;
    width: 7px;
    /* border-radius: 50%; */
    background: var(--main);
    pointer-events: auto;
    -webkit-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

input[type="range"]::-moz-range-thumb {
    height: 20px;
    width: 7px;
    border: none;
    /* border-radius: 50%; */
    background: var(--main);
    pointer-events: auto;
    -moz-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

/*products*/
.item {
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.12);
}

@media only screen and (max-width: 900px) {
    .item .img {
        height: 170px !important;
        overflow: hidden;
    }
}

.item .img {
    height: 280px;
    overflow: hidden;
}
.item .img img {
    object-fit: cover;
    transition: transform 1s linear;
    width: 100%;
}
/* 

.item .img .main_img_2 {
    transform: scale(0.99);

    visibility: hidden;
}

.item .img:hover .main_img {
    display: none;
}

.item .img:hover .main_img_2 {
    transform: scale(1.2);
    visibility: visible;
}

.item .icons-home {
    display: inline-flex;
    position: absolute;
    top: 5%;
    left: -100%;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background: aliceblue;
    font-size: 18px;
    margin: auto;
    transition: 0.5s;
}

.item .img:hover .icons-home {
    right: 5%;
}

.item .btn-add-to-card {
    transform: translateY(50px);
    transition: 0.5s;
    background-color: var(--main);
}

.item .img:hover .btn-add-to-card {
    transform: translateY(-100%);
}

.item .images_color img {
    height: 20px;
    width: 20px;
}

.item .desc {
    -webkit-line-clamp: 1;
    display: -webkit-box;
    overflow-y: clip;
    -webkit-box-orient: vertical;
}

.item .price {
    color: var(--main);
} */

/* .item .btn {
    background-color: var(--main);
} */

/* .btn-shop-now {
    background-color: var(--main);
}

.item .close:hover {
    color: #6c757d;
}

.item .product_modal {
    background-color: rgba(255, 255, 255, 0.7);
    overflow-y: auto;
    overflow-x: hidden;
}

.item .btn-add-to-cart {
    background-color: var(--main);
    border: 0 !important;
}

.item .increse-decrese {
    border-radius: 6px;
    background-color: rgb(237 64 0) !important;
}

.item .decrese,
.item .increse,
.item .product-num {
    background-color: rgb(237 64 0) !important;
    border: 0 !important;
    width: auto !important;
} */

/* 0 0 4px rgba(0,0,0,0.12) */

.collapse_remove .remove {
    background-color: rgba(0, 0, 0, 0.04);
}

.addToCartBtn {
    background-color: rgb(237 64 0);
}

.increase,
.decrease {
    background-color: rgb(237 64 0) !important;
    border: none !important;
    box-shadow: none !important;
}

.remove {
    color: red !important;
    right: 5px;
    top: 5px;
    position: absolute;
    background: white;
    width: 15px;
    height: 25px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 9;
}